home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_08_06 / 8n06090a < prev    next >
Text File  |  1990-03-12  |  506b  |  20 lines

  1. *****Listing 3*****
  2.  
  3. /* SOURCE:  INFORMIX 4GL REFERENCE MANUAL, VOL I, PAGE 1-59 */
  4.  
  5. void popint(int *);             /* Popping Functions */
  6. void popshort(short *);
  7. void poplong(long *);
  8. void popflo(float *);
  9. void popdub(double *);
  10. void popquote(char *, short);
  11. void popdec(struct dec_t *);
  12.  
  13. void retint(int);               /* Pushing Functions */
  14. void retshort(short);
  15. void retlong(long);
  16. void retflo(float *);
  17. void retdub(double *);
  18. void retquote(char *);
  19. void retdec(struct dec_t *);
  20.